Indexed Properties
Represents an array of values
Property element get/set methods take an integer index parameter
public String getSymbol(int index)
throws ArrayIndexOutOfBoundsException {}
public void setSymbol(int index, String newElement Value)
throws ArrayIndexOutOfBoundsException {}
May also support getting and setting the entire array
public String[] getSymbol();
public void setSymbol(String[] newArrayValue) {}

Return to Tracks